home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pine / imap-3.0 / ANSI / c-client / makefile.dnv < prev    next >
Encoding:
Makefile  |  1993-06-07  |  2.7 KB  |  82 lines

  1. # Program:    Portable C client makefile -- MS-DOS (Novell) version
  2. #
  3. # Author:    Mark Crispin
  4. #        Networks and Distributed Computing
  5. #        Computing & Communications
  6. #        University of Washington
  7. #        Administration Building, AG-44
  8. #        Seattle, WA  98195
  9. #        Internet: MRC@CAC.Washington.EDU
  10. #
  11. # Date:        11 May 1989
  12. # Last Edited:    7 June 1993
  13. #
  14. # Copyright 1993 by the University of Washington
  15. #
  16. #  Permission to use, copy, modify, and distribute this software and its
  17. # documentation for any purpose and without fee is hereby granted, provided
  18. # that the above copyright notice appears in all copies and that both the
  19. # above copyright notice and this permission notice appear in supporting
  20. # documentation, and that the name of the University of Washington not be
  21. # used in advertising or publicity pertaining to distribution of the software
  22. # without specific, written prior permission.  This software is made
  23. # available "as is", and
  24. # THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  25. # WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  26. # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  27. # NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  28. # INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  29. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  30. # (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  31. # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  32.  
  33.  
  34. osdep.h: os_dnv.h
  35.     copy os_dnv.h osdep.h
  36.  
  37. mtest.obj: mail.h smtp.h misc.h osdep.h mtest.c
  38.     cl -c -AL mtest.c
  39.  
  40. mail.obj: mail.h misc.h osdep.h mail.c
  41.     cl -c -AL mail.c
  42.  
  43. imap2.obj: mail.h imap2.h misc.h osdep.h imap2.c
  44.     cl -c -AL imap2.c
  45.  
  46. dawz.obj: mail.h dawz.h misc.h osdep.h dawz.c
  47.     cl -c -AL dawz.c
  48.  
  49. nntpcdos.obj: mail.h nntpcdos.h misc.h osdep.h nntpcdos.c
  50.     cl -c -AL nntpcdos.c
  51.  
  52. dummydos.obj: mail.h dummy.h misc.h osdep.h dummydos.c
  53.     cl -c -AL dummydos.c
  54.  
  55. smtp.obj: mail.h smtp.h rfc822.h misc.h osdep.h smtp.c
  56.     cl -c -AL smtp.c
  57.  
  58. nntp.obj: mail.h nntp.h smtp.h rfc822.h misc.h osdep.h nntp.c
  59.     cl -c -AL nntp.c
  60.  
  61. rfc822.obj: mail.h rfc822.h misc.h rfc822.c
  62.     cl -c -AL rfc822.c
  63.  
  64. misc.obj: mail.h misc.h misc.c
  65.     cl -c -AL misc.c
  66.  
  67. sm_dos.obj: mail.h misc.h sm_dos.c
  68.     cl -c -AL sm_dos.c
  69.  
  70. osdep.obj: mail.h osdep.h os_dnv.c
  71.     erase osdep.obj
  72.     cl -c -AL os_dnv.c
  73.     rename os_dnv.obj osdep.obj
  74.  
  75. cclient.lib: mail.obj imap2.obj dawz.obj nntpcdos.obj dummydos.obj smtp.obj \
  76.     nntp.obj misc.obj rfc822.obj sm_dos.obj osdep.obj
  77.     erase cclient.lib
  78.     lib cclient +mail+imap2+dawz+nntpcdos+dummydos+smtp+nntp+misc+rfc822+sm_dos+osdep;
  79.  
  80. mtest.exe: mtest.obj cclient.lib
  81.     link /stack:32767 mtest.obj,mtest.exe,,cclient.lib llibsock.lib
  82.